Skip to main content
Version: 1.0.2

Approve Inbound Request

The ApproveToken API enables to approve an inbound RTP Transaction.

Method: POST

{{URL}}/PLMASTER/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

key

Mandatory

String

Type of token that is to be approved

Example: " RTP_RFR_OUT_APPROVAL"

id

Mandatory

String

Unique ID of the transaction

Example: " QA00000000021001"

approved

Mandatory

Boolean

Whether the token to be approved? True – Yes, False – No

Example: true


curl --location --request GET 'https://plus.netxd.com/PLMASTER/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"CustomerService.ApproveToken","id":"1","params":{"payload":{"key":"RTP_RFR_OUT_APPROVAL","id":"QA00000000021001","approved":true},"api":{"credential":"Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=","signature":"MEUCIBR09cC2k22YX0Vqg8Sed/8xmfAykKoajT83k3Xqcbq5AiEAsy/acZbXB/PZwyVN0VfIGYzangZRzNSFVRpYHqUdgQs=","apiKey":"24f12bb1712f4285ab3c8a1698d54a7b","keyId":"167234"}}}'

Request Body


{
"method": "CustomerService.ApproveToken",
"id": "1",
"params": {
"payload": {
"key": "RTP_RFR_OUT_APPROVAL",
"id": "QA00000000021001",
"approved": true
},
"api": {
"credential": "Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=",
"signature": "MEUCIBR09cC2k22YX0Vqg8Sed/8xmfAykKoajT83k3Xqcbq5AiEAsy/acZbXB/PZwyVN0VfIGYzangZRzNSFVRpYHqUdgQs=",
"apiKey": "24f12bb1712f4285ab3c8a1698d54a7b",
"keyId": "167234"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Unique ID of the Request

Example: " 1"

result

Object

message

String

Message that indicates whether the token is approved or not

Example: " Token processed successfully"

jsonrpc

String

JSON RPC Version

Example: " 2.0"

Response Body


{
"id": "1",
"result": {
"message": "Token processed successfully"
},
"jsonrpc": "2.0"
}